home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # postinst script for cups-pdf
-
- set -e
-
- case "$1" in
- configure|removing)
- if ! [ -f /var/log/cups/cups-pdf_log ]
- then
- touch /var/log/cups/cups-pdf_log
- fi
- chown root:lpadmin /var/log/cups/cups-pdf_log*
- chmod 0600 /var/log/cups/cups-pdf_log*
- chown nobody:nogroup /var/spool/cups-pdf/ANONYMOUS
- chmod 1777 /var/spool/cups-pdf/ANONYMOUS
- chmod 0700 /usr/lib/cups/backend/cups-pdf
- # We need CUPS to reload its configuration before the backend is available.
- if [ -f /etc/init.d/cups ]
- then
- invoke-rc.d cups force-reload || invoke-rc.d cups start || true
- fi
- # Create a PDF queue if we have none yet.
- if [ -z "$(LC_ALL=C lpstat -h localhost -v 2>/dev/null | grep 'cups-pdf:/')" ]
- then
- # 1) Find a name for the PDF queue.
- queue=PDF
- number=0
- while $(LC_ALL=C lpstat -h localhost -v 2>/dev/null | cut -d ':' -f 1 | cut -d ' ' -f 3 | grep -q ^$queue\$)
- do
- number=$(($number + 1))
- queue="PDF$number"
- done
- # 2) Find the default paper size.
- size="$(LC_ALL=C paperconf 2>/dev/null)" || size=a4
- # 3) Create the queue.
- echo | lpadmin -h localhost -p $queue -E -v cups-pdf:/ -m lsb/usr/cups-pdf/CUPS-PDF.ppd -o printer-is-shared=no -o PageSize=$size 2>/dev/null || :
- # 4) Set the PDF queue as default if there is no default printer yet.
- if [ -z "$(LC_ALL=C lpstat -h localhost -d 2>/dev/null | grep 'system default destination:')" ]
- then
- echo | lpadmin -h localhost -d $queue 2>/dev/null || :
- fi
- fi
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
- esac
-
-
-
- exit 0
-